home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / msoftapp.zip / COMMON.H < prev    next >
C/C++ Source or Header  |  1993-06-01  |  475b  |  20 lines

  1. // common.h : Defines common constants used in all MDI sample app modules.
  2.  
  3. #ifndef __COMMON_H_
  4. #define __COMMON_H_
  5.  
  6. // These are the positions of the "Window" menu for each menu bar. 
  7. const INIT_MENU_POS = 0;
  8. const BOUNCE_MENU_POS  = 3;
  9. const HELLO_MENU_POS = 2;
  10. const FILEWIN_MENU_POS = 2;
  11.  
  12. // Custom Windows message used to coordinate child window destruction
  13. const WM_CHILDDESTROY = (WM_USER+1);
  14.  
  15. extern COLORREF clrTextArray[];
  16.  
  17. #endif  __COMMON_H_
  18.  
  19.  
  20.